55671adcbdae030475020edc0dc11981c0901d1c,src/main/java/minecraftbyexample/mbe13_item_tools/Startup.java,Startup,preInitCommon,#,38

Before Change


    methodCallLogger.setShouldLog("Item.onBlockStartBreak", true);
    methodCallLogger.setShouldLog("Item.onBlockDestroyed", true);
    methodCallLogger.setShouldLog("Block.getHarvestLevel", true);
    methodCallLogger.setShouldLog("Block.getHarvestTool", true);
    methodCallLogger.setShouldLog("Block.isToolEffective", true);
    methodCallLogger.setShouldLog("Block.getBlockHardness", true);
    methodCallLogger.setShouldLog("Block.getPlayerRelativeBlockHardness", true);

After Change



    methodCallLogger.setShouldLog("Block.onBlockHarvested", true);
    methodCallLogger.setShouldLog("Block.getDrops", true);
    methodCallLogger.setShouldLog("Block.onBlockDestroyedByPlayer", true);
    methodCallLogger.setShouldLog("Block.harvestBlock", true);
    methodCallLogger.setShouldLog("Block.createStackedBlock", true);
    methodCallLogger.setShouldLog("Block.dropBlockAsItemWithChance", true);